home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-10-16 | 1.5 KB | 39 lines | [TEXT/GEOL] |
- Item 3555628 14-Oct-89 13:08
-
- From: D0420 Satori SW, Hugh Rogovy,PRT
-
- To: D2652 Strategic Planning Sys, D Bell,PRT
- MACAPP.TECH$ MACAPP Tech
-
- Sub: re: Sytem errors only on Plus
-
- Danny,
-
- The system bomb you're getting is a "stack hit heap" error.
- It looks like you just haven't specified a large enough stack for your
- app. All you need to do is increase the 3rd value in your mem! resource
- to a value that will allow your app to run.
-
- type 'mem!' {
- longint; // add to code reserve size
- longint; // add to low space reserve size
- longint; // ****stack size*****
- };
-
- I know this seems too simple to be true, but the same thing happened to us
- a year ago as we were attempting to get a product out the door. We went to
- the extreme of doing printing in an idle loop to keep from getting the error,
- only to realize later that increasing this *single* value in the resource
- solved all of our problems. Generally a stack size of 20-30k is sufficient,
- but you should attempt to use a value that works best for your specific app.
-
- It's possible that this isn't your problem, and I have no idea why it would
- only show up on a Plus(???), but if you haven't done anything with the mem!
- resource, it most likely is...
-
- Good Luck,
-
- Chris Le Croy
- Satori Software
-
-